home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1996-06-21 | 1.5 KB | 50 lines | [TEXT/MEDT] |
- DEFINITION MODULE MatAri;
-
- (*******************************************************************
-
- Module MatAri (Version 1.0)
-
- Copyright ©1993 by Olivier Roth, Andreas Fischlin,
- and Swiss Federal Institute of Technology Zürich ETHZ
-
- Purpose: procedures from this module provide arithmetic operations
- on parts or complete matrices.
-
- Remarks: This modulde is part of the Mat-library, which forms
- part of the RAMSES package.
-
- Programming
- o Design and Implementation
- O. Roth 23.04.90
- A. Fischlin 28/Mai/93
-
- Systems Ecology Group
- Swiss Federal Institute of Technology Zurich ETHZ
- Department of Environmental Sciences
- Grabenstr. 3
- CH-8952 Schlieren/Zurich
- Switzerland
-
- Last revision of definition: 28/Mai/93 af
-
- *******************************************************************)
-
- FROM Matrices IMPORT Matrix, Selection;
-
-
- TYPE
- Operation = ( add, sub, mul, div, inv, ln, exp, sqr, sqrt, power,
- trunc, round, fract, min, max,
- sin, cos, tan, arcSin, arcCos, arcTan );
-
-
- PROCEDURE DoAriWithMatrix( a: Matrix; area: Selection;
- ops: Operation; x: REAL );
-
-
- PROCEDURE SeriesMat( a: Matrix; area: Selection; byRows: BOOLEAN;
- base, step: REAL );
-
-
- END MatAri.
-